logJson('{"text":"meow ^^","color":"#a672ef"}')
printJson('{"text":"meow ^^","color":"#a672ef"}')
local table = {'string',{'tableception'}}
printTable(table,2)
local library = require("lib.parser")
-- this will import a file
action_wheel
| Method Property | Fluent Description | Representation |
|---|---|---|
| Field Type | an ActionWheelAPI | ActionWheelAPI
|
examplePage = action_wheel:createPage()
action_wheel:setPage(examplePage)
examplePage:newAction(1):onRightClick(function() log('chat spam :3') end)
events.TICK:register(function()
action_wheel:execute(1,true)
end)
-- this will only run if the action wheel is open
action_wheel:execute()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | nil | nil
|
examplePage = action_wheel:createPage()
action_wheel:setPage(examplePage)
events.TICK:register(function()
if action_wheel:isEnabled() then
log("action wheel's is open!")
end
end)
action_wheel:isEnabled()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Boolean | Boolean
|
examplePage = action_wheel:createPage()
action_wheel:setPage(examplePage)
for slot = 1,8 do
examplePage:newAction(slot)
end
events.TICK:register(function()
log(action_wheel:getSelected())
end)
-- returns even if the action wheel is closed
action_wheel:getSelected()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | an Integer | Integer
|
action_wheel:createPage('examplePage')
examplePage = action_wheel:createPage()
action_wheel:setPage(examplePage)
action_wheel:createPage('examplePage')
log(action_wheel:getPage('examplePage'))
examplePage = action_wheel:createPage('pageName')
action_wheel:setPage(examplePage)
function action_wheel.leftClick()
log('you just left clicked while in the action wheel!')
end
leftClick
| Method Property | Fluent Description | Representation |
|---|---|---|
| Field Type | a Function | Function
|
examplePage = action_wheel:createPage('pageName')
action_wheel:setPage(examplePage)
function action_wheel.rightClick()
log('you just left clicked while in the action wheel!')
end
rightClick
| Method Property | Fluent Description | Representation |
|---|---|---|
| Field Type | a Function | Function
|
examplePage = action_wheel:createPage('pageName')
action_wheel:setPage(examplePage)
function action_wheel.scroll(direction)
log(direction)
end
scroll
| Method Property | Fluent Description | Representation |
|---|---|---|
| Field Type | a Function | Function
|
animations
| Method Property | Fluent Description | Representation |
|---|---|---|
| Field Type | a table | Table
|
avatar
| Method Property | Fluent Description | Representation |
|---|---|---|
| Field Type | an AvatarAPI | AvatarAPI
|
avatar:getName()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a string | String
|
avatar:getSize()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a number | Number
|
avatar:getVersion()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a string | String
|
avatar:getAuthors()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a string | String
|
avatar:getCurrentInstructions()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | an Integer | Integer
|
avatar:getMaxWorldRenderCount()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | an Integer | Integer
|
avatar:getWorldRenderCount()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | an Integer | Integer
|
avatar:getMaxAnimationComplexity()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | an Integer | Integer
|
avatar:getRemainingParticles()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | an Integer | Integer
|
avatar:getAnimationComplexity()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | an Integer | Integer
|
avatar:canEditVanillaModel()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Boolean | Boolean
|
avatar:getMaxWorldTickCount()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | an Integer | Integer
|
avatar:getComplexity()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | an Integer | Integer
|
avatar:getColor()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a string | String
|
avatar:hasTexture()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Boolean | Boolean
|
avatar:getMaxTickCount()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | an Integer | Integer
|
avatar:getWorldTickCount()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | an Integer | Integer
|
avatar:getRemainingSounds()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | an Integer | Integer
|
avatar:getMaxSounds()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | an Integer | Integer
|
avatar:getMaxInitCount()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | an Integer | Integer
|
avatar:getInitCount()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | an Integer | Integer
|
avatar:getMaxComplexity()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | an Integer | Integer
|
avatar:getEntityInitCount()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | an Integer | Integer
|
avatar:getMaxParticles()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | an Integer | Integer
|
avatar:getMaxRenderCount()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | an Integer | Integer
|
avatar:getTickCount()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | an Integer | Integer
|
avatar:getRenderCount()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | an Integer | Integer
|
avatar:hasScriptError()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Boolean | Boolean
|
avatar:canRenderOffscreen()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Boolean | Boolean
|
avatar:canUseCustomSounds()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Boolean | Boolean
|
avatar:canEditNameplate()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Boolean | Boolean
|
client
| Method Property | Fluent Description | Representation |
|---|---|---|
| Field Type | a ClientAPI | ClientAPI
|
log(client.getVersion())
client.getVersion()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a string | String
|
client.isDebugOverlayEnabled()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Boolean | Boolean
|
log(client.getEntityStatistics())
-- Number of rendered entities / total entities, 0, simulation distance
client.getEntityStatistics()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a string | String
|
client.getScaledWindowSize()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Vector2 | Vector2
|
client.getEntityCount()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | an Integer | Integer
|
log(client.getJavaVersion())
client.getJavaVersion()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a string | String
|
log(client.getServerBrand())
client.getServerBrand()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a string | String
|
events.TICK:register(function()
log(client.getSoundStatistics())
end)
-- sounds playing / sounds limit + ambient sounds playing / ambient sounds limit
client.getSoundStatistics()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a string | String
|
events.TICK:register(function()
log(client.getUsedMemory())
end)
-- returns memory in bytes
client.getUsedMemory()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | an Integer | Integer
|
log(client.getMaxMemory())
-- returns memory in bytes
client.getMaxMemory()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | an Integer | Integer
|
client.getFPS()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | an Integer | Integer
|
log(client.getVersionType())
client.getVersionType()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a string | String
|
client.hasIris()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Boolean | Boolean
|
client.getFPSString()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a string | String
|
log(client.getChunkStatistics())
-- Number of chunk sections rendered / the total number of chunk sections in the loaded area
client.getChunkStatistics()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a string | String
|
client.getParticleCount()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a string | String
|
client.getFiguraVersion()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a string | String
|
log(client.getGuiScale())
client.getGuiScale()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a number | Number
|
log(client.getTextHeight('TEXT!'))
log(client.getTextWidth('TEXT!'))
log(client.getActiveLang())
client.getActiveLang()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a string | String
|
client.getMousePos()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Vector2 | Vector2
|
client.isHudEnabled()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Boolean | Boolean
|
client.getSystemTime()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | an Integer | Integer
|
client.getCameraRot()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Vector3 | Vector3
|
client.getWindowSize()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Vector2 | Vector2
|
client.isWindowFocused()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Boolean | Boolean
|
client.getFOV()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a number | Number
|
log(client.getAllocatedMemory())
-- returns memory in bytes
client.getAllocatedMemory()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | an Integer | Integer
|
client.hasIrisShader()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Boolean | Boolean
|
client.getCameraPos()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Vector3 | Vector3
|
events
| Method Property | Fluent Description | Representation |
|---|---|---|
| Field Type | an EventsAPI | EventsAPI
|
ENTITY_INIT
| Method Property | Fluent Description | Representation |
|---|---|---|
| Field Type | an Event | Event
|
WORLD_TICK
| Method Property | Fluent Description | Representation |
|---|---|---|
| Field Type | an Event | Event
|
POST_RENDER
| Method Property | Fluent Description | Representation |
|---|---|---|
| Field Type | an Event | Event
|
WORLD_RENDER
| Method Property | Fluent Description | Representation |
|---|---|---|
| Field Type | an Event | Event
|
POST_WORLD_RENDER
| Method Property | Fluent Description | Representation |
|---|---|---|
| Field Type | an Event | Event
|
CHAT_SEND_MESSAGE
| Method Property | Fluent Description | Representation |
|---|---|---|
| Field Type | an Event | Event
|
CHAT_RECEIVE_MESSAGE
| Method Property | Fluent Description | Representation |
|---|---|---|
| Field Type | an Event | Event
|
SKULL_RENDER
| Method Property | Fluent Description | Representation |
|---|---|---|
| Field Type | an Event | Event
|
MOUSE_SCROLL
| Method Property | Fluent Description | Representation |
|---|---|---|
| Field Type | an Event | Event
|
figuraMetatables
| Method Property | Fluent Description | Representation |
|---|---|---|
| Field Type | a table | Table
|
host
| Method Property | Fluent Description | Representation |
|---|---|---|
| Field Type | a HostAPI | HostAPI
|
host:isHost()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Boolean | Boolean
|
host:clearTitle()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | nil | nil
|
host:getTargetedEntity()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | an EntityAPI | EntityAPI
|
host:isChatOpen()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Boolean | Boolean
|
host:isContainerOpen()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Boolean | Boolean
|
host:getChatText()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a string | String
|
host:getChatColor()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | an Integer | Integer
|
unlockCursor
| Method Property | Fluent Description | Representation |
|---|---|---|
| Field Type | a Boolean | Boolean
|
keybind
| Method Property | Fluent Description | Representation |
|---|---|---|
| Field Type | a KeybindAPI | KeybindAPI
|
matrices
| Method Property | Fluent Description | Representation |
|---|---|---|
| Field Type | a MatricesAPI | MatricesAPI
|
matrices.mat3()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Matrix3 | Matrix3
|
matrices.mat4()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Matrix4 | Matrix4
|
models
| Method Property | Fluent Description | Representation |
|---|---|---|
| Field Type | a ModelPart | ModelPart
|
models:getName()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a string | String
|
models:getType()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a string | String
|
models:getChildren()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | an array of a ModelPart | ModelPart
[
]
|
models:addItem(taskName)
| Method Property | Fluent Description | Representation |
|---|---|---|
| taskName accepts | a string | String
|
| Return Value | a RenderTask | RenderTask
|
models:getAnimScale()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Vector3 | Vector3
|
models:getTask()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a table mapping a string to a RenderTask | Table
<
String
,
RenderTask
>
|
models:getTask(taskName)
| Method Property | Fluent Description | Representation |
|---|---|---|
| taskName accepts | a string | String
|
| Return Value | a RenderTask | RenderTask
|
models:getScale()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Vector3 | Vector3
|
models:getPos()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Vector3 | Vector3
|
models:getOpacity()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a number | Number
|
models:getPivot()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Vector3 | Vector3
|
models:getAnimPos()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Vector3 | Vector3
|
models:getOffsetPivot()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Vector3 | Vector3
|
models:getAnimRot()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Vector3 | Vector3
|
models:getNormalMatrixRaw()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Matrix3 | Matrix3
|
models:getRot()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Vector3 | Vector3
|
models:getPositionMatrix()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Matrix4 | Matrix4
|
models:getNormalMatrix()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Matrix3 | Matrix3
|
models:getOffsetRot()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Vector3 | Vector3
|
models:partToWorldMatrix()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Matrix4 | Matrix4
|
models:getLight()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Vector2 | Vector2
|
models:getTextureSize()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Vector2 | Vector2
|
models:addText(taskName)
| Method Property | Fluent Description | Representation |
|---|---|---|
| taskName accepts | a string | String
|
| Return Value | a RenderTask | RenderTask
|
models:getParentType()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a string | String
|
models:addBlock(taskName)
| Method Property | Fluent Description | Representation |
|---|---|---|
| taskName accepts | a string | String
|
| Return Value | a RenderTask | RenderTask
|
models:getPositionMatrixRaw()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Matrix4 | Matrix4
|
models:getSecondaryRenderType()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | either a RenderTypes or nil | RenderTypes
|
nil
|
models:getPrimaryRenderType()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | either a RenderTypes or nil | RenderTypes
|
nil
|
models:getColor()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Vector3 | Vector3
|
nameplate
| Method Property | Fluent Description | Representation |
|---|---|---|
| Field Type | a NameplateAPI | NameplateAPI
|
CHAT
| Method Property | Fluent Description | Representation |
|---|---|---|
| Field Type | a NameplateCustomization | NameplateCustomization
|
ENTITY
| Method Property | Fluent Description | Representation |
|---|---|---|
| Field Type | an EntityNameplateCustomization | EntityNameplateCustomization
|
LIST
| Method Property | Fluent Description | Representation |
|---|---|---|
| Field Type | a NameplateCustomization | NameplateCustomization
|
ALL
| Method Property | Fluent Description | Representation |
|---|---|---|
| Field Type | a NameplateCustomizationGroup | NameplateCustomizationGroup
|
particles
| Method Property | Fluent Description | Representation |
|---|---|---|
| Field Type | a ParticleAPI | ParticleAPI
|
particles:addParticle(name, posX, posY, posZ, velX, velY, velZ)
player
| Method Property | Fluent Description | Representation |
|---|---|---|
| Field Type | a PlayerAPI | PlayerAPI
|
if player:getSaturation() == 20 then
log("Your saturation is 20")
end
player:getSaturation()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a number | Number
|
if player:getExperienceLevel() == 30 then
log("You have 30 levels")
end
player:getExperienceLevel()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a number | Number
|
if player:isFlying() then
log("You're flying")
end
player:isFlying()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Boolean | Boolean
|
if player:getFood() == 0 then
log("You're starving")
end
player:getFood()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | an Integer | Integer
|
if player:getModelType() == "DEFAULT" then
log("You're Steve")
end
player:getModelType()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a string | String
|
if player:getGamemode() and player:getGamemode() == "SURVIVAL" then
log("You're in survival mode")
end
if player:getExperienceProgress() > .5 then
log("You're over halfway to the next level")
end
player:getExperienceProgress()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a number | Number
|
Inherited from LivingEntityAPI
models:setRot(0,player:getBodyYaw())
Inherited from LivingEntityAPI
if player:getHeldItem(false).id == "minecraft:diamond_sword" then
log("You're holding a diamond sword")
end
Inherited from LivingEntityAPI
if player:getActiveItem().id == "minecraft:bow" then
log("You're drawing back a bow")
end
player:getActiveItem()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | an ItemStack | ItemStack
|
Inherited from LivingEntityAPI
if player:getDeathTime() > 0 then
log("You're dead")
end
player:getDeathTime()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a number | Number
|
Inherited from LivingEntityAPI
if player:isClimbing() then
log("You're climbing")
end
player:isClimbing()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Boolean | Boolean
|
Inherited from LivingEntityAPI
if player:isUsingItem() then
log("You're using an item")
end
player:isUsingItem()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Boolean | Boolean
|
Inherited from LivingEntityAPI
if player:getStingerCount() > 0 then
log("You've been stung")
end
player:getStingerCount()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | an Integer | Integer
|
Inherited from LivingEntityAPI
if player:isLeftHanded() then
log("You're left handed")
end
player:isLeftHanded()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Boolean | Boolean
|
Inherited from LivingEntityAPI
if player:getArmor() == 20 then
log("You have max armor points")
end
player:getArmor()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a number | Number
|
Inherited from LivingEntityAPI
if player:getHealth() == 20 then
log("You're at full health")
end
player:getHealth()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a number | Number
|
Inherited from LivingEntityAPI
for i, effect in ipairs(player:getStatusEffects()) do
if effect.name == "effect.minecraft.night_vision" then
log("Night vision")
end
end
player:getStatusEffects()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a table | Table
|
Inherited from LivingEntityAPI
if player:getArrowCount() > 0 then
log("You've been shot")
end
player:getArrowCount()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | an Integer | Integer
|
Inherited from LivingEntityAPI
if player:getActiveHand() == "MAIN_HAND" then
log("You're using your main hand")
end
player:getActiveHand()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a string | String
|
Inherited from LivingEntityAPI
if player:getMaxHealth() == 20 then
log("You're healthy")
end
player:getMaxHealth()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a number | Number
|
Inherited from LivingEntityAPI
if player:getName() == "JimmyHelp" then
log("You're... me?")
end
player:getName()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a string | String
|
Inherited from LivingEntityAPI
if player:getType() == "minecraft:player" then
log("You're a player")
end
player:getType()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a string | String
|
Inherited from LivingEntityAPI
if player:isLoaded() then
log("You're being loaded")
end
player:isLoaded()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Boolean | Boolean
|
Inherited from LivingEntityAPI
if player:getItem(5).id == "minecraft:elytra" then
log("You're wearing an elytra")
end
Inherited from LivingEntityAPI
player:getNbt()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a table | Table
|
Inherited from LivingEntityAPI
Inherited from LivingEntityAPI
Inherited from LivingEntityAPI
models:setRot(player:getLookDir())
player:getLookDir()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Vector3 | Vector3
|
Inherited from LivingEntityAPI
if player:isHamburger() then
log("You're hamburger")
end
player:isHamburger()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Boolean | Boolean
|
Inherited from LivingEntityAPI
if player:getUUID() == "5003b2ce-7a8d-4c56-8b91-ec705985fe08" then
log("You're... me?")
end
player:getUUID()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a string | String
|
Inherited from LivingEntityAPI
if player:getVelocity():length() > 0 then
log("You're moving in any direction")
end
player:getVelocity()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Vector3 | Vector3
|
Inherited from LivingEntityAPI
if player:isUnderwater() then
log("You're underwater")
end
player:isUnderwater()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Boolean | Boolean
|
Inherited from LivingEntityAPI
log(player:getBoundingBox())
player:getBoundingBox()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Vector3 | Vector3
|
Inherited from LivingEntityAPI
models:setPos(0,player:getEyeHeight())
player:getEyeHeight()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a number | Number
|
Inherited from LivingEntityAPI
if player:hasAvatar() then
log("You have an avatar")
end
player:hasAvatar()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Boolean | Boolean
|
Inherited from LivingEntityAPI
if player:getVehicle() and player:getVehicle():getType() == "minecraft:pig" then
log("You're riding a pig")
end
player:getVehicle()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | an EntityAPI | EntityAPI
|
Inherited from LivingEntityAPI
if player:isSprinting() then
log("You're sprinting")
end
player:isSprinting()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Boolean | Boolean
|
Inherited from LivingEntityAPI
if player:getFireTicks() == 1 then
log("You're in a fire (returns -20 if not in a fire, the description is misleading)")
end
player:getFireTicks()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | an Integer | Integer
|
Inherited from LivingEntityAPI
if player:getMaxAir() == 300 then
log("You've got healthy lungs")
end
player:getMaxAir()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | an Integer | Integer
|
Inherited from LivingEntityAPI
if player:getAir() < 0 then
log("You're drowning")
end
player:getAir()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | an Integer | Integer
|
Inherited from LivingEntityAPI
if player:getDimensionName() == "minecraft:overworld" then
log("You're in the Overworld")
end
player:getDimensionName()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a string | String
|
Inherited from LivingEntityAPI
if player:getFrozenTicks() == 140 then
log("You're being frozen solid")
end
player:getFrozenTicks()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | an Integer | Integer
|
Inherited from LivingEntityAPI
if player:isInLava() then
log("You're in lava")
end
player:isInLava()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Boolean | Boolean
|
Inherited from LivingEntityAPI
if player:isWet() then
log("You're touching water")
end
player:isWet()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Boolean | Boolean
|
Inherited from LivingEntityAPI
if player:getPose() == "CROUCHING" then
log("You're crouching")
end
player:getPose()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a string | String
|
Inherited from LivingEntityAPI
if player:isInWater() then
log("You're in water")
end
player:isInWater()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Boolean | Boolean
|
Inherited from LivingEntityAPI
if player:isOnGround() then
log("You're on the ground")
end
player:isOnGround()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Boolean | Boolean
|
Inherited from LivingEntityAPI
if player:isInRain() then
log("You're in rain")
end
player:isInRain()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Boolean | Boolean
|
Inherited from LivingEntityAPI
player:getEyeY()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a number | Number
|
Inherited from LivingEntityAPI
if player:getTargetedBlock(true,4.5).id == "minecraft:grass_block" then
log("You're looking at grass")
end
player:getTargetedBlock()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a BlockState | BlockState
|
player:getTargetedBlock(ignoreLiquids)
| Method Property | Fluent Description | Representation |
|---|---|---|
| ignoreLiquids accepts | a Boolean | Boolean
|
| Return Value | a BlockState | BlockState
|
player:getTargetedBlock(ignoreLiquids, distance)
| Method Property | Fluent Description | Representation |
|---|---|---|
| ignoreLiquids accepts | a Boolean | Boolean
|
| distance accepts | a number | Number
|
| Return Value | a BlockState | BlockState
|
Inherited from LivingEntityAPI
if player:isOnFire() then
log("You're on fire")
end
player:isOnFire()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Boolean | Boolean
|
Inherited from LivingEntityAPI
if player:isSneaking() then
log("You're sneaking")
end
player:isSneaking()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Boolean | Boolean
|
Inherited from LivingEntityAPI
if player:isGlowing() then
log("You're glowing")
end
player:isGlowing()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Boolean | Boolean
|
Inherited from LivingEntityAPI
if player:isSilent() then
log("You're silent")
end
player:isSilent()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Boolean | Boolean
|
Inherited from LivingEntityAPI
Inherited from LivingEntityAPI
if player:isInvisible() then
log("You're invisible")
end
player:isInvisible()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Boolean | Boolean
|
renderer
| Method Property | Fluent Description | Representation |
|---|---|---|
| Field Type | a RendererAPI | RendererAPI
|
renderer:getCameraOffsetPivot()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Vector3 | Vector3
|
renderer:getCameraOffsetRot()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Vector3 | Vector3
|
renderer:getShadowRadius()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a number | Number
|
renderer:isFirstPerson()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Boolean | Boolean
|
renderer:isCameraBackwards()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Boolean | Boolean
|
renderer:getCameraPivot()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Vector3 | Vector3
|
renderer:getCameraRot()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Vector3 | Vector3
|
renderFire
| Method Property | Fluent Description | Representation |
|---|---|---|
| Field Type | a Boolean | Boolean
|
renderVehicle
| Method Property | Fluent Description | Representation |
|---|---|---|
| Field Type | a Boolean | Boolean
|
renderCrosshair
| Method Property | Fluent Description | Representation |
|---|---|---|
| Field Type | a Boolean | Boolean
|
forcePaperdoll
| Method Property | Fluent Description | Representation |
|---|---|---|
| Field Type | a Boolean | Boolean
|
sounds
| Method Property | Fluent Description | Representation |
|---|---|---|
| Field Type | a SoundAPI | SoundAPI
|
sounds:playSound(sound, posX, posY, posZ, volume, pitch, loop)
type
| Method Property | Fluent Description | Representation |
|---|---|---|
| Field Type | a Function | Function
|
user
| Method Property | Fluent Description | Representation |
|---|---|---|
| Field Type | an EntityAPI | EntityAPI
|
user:getName()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a string | String
|
user:getType()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a string | String
|
user:isLoaded()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Boolean | Boolean
|
user:getNbt()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a table | Table
|
user:getLookDir()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Vector3 | Vector3
|
user:isHamburger()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Boolean | Boolean
|
user:getUUID()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a string | String
|
user:getVelocity()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Vector3 | Vector3
|
user:isUnderwater()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Boolean | Boolean
|
user:getBoundingBox()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Vector3 | Vector3
|
user:getEyeHeight()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a number | Number
|
user:hasAvatar()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Boolean | Boolean
|
user:isSprinting()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Boolean | Boolean
|
user:getFireTicks()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | an Integer | Integer
|
user:getMaxAir()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | an Integer | Integer
|
user:getAir()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | an Integer | Integer
|
user:getDimensionName()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a string | String
|
user:getFrozenTicks()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | an Integer | Integer
|
user:isInLava()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Boolean | Boolean
|
user:isWet()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Boolean | Boolean
|
user:getPose()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a string | String
|
user:isInWater()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Boolean | Boolean
|
user:isOnGround()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Boolean | Boolean
|
user:isInRain()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Boolean | Boolean
|
user:getEyeY()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a number | Number
|
user:getTargetedBlock()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a BlockState | BlockState
|
user:getTargetedBlock(ignoreLiquids)
| Method Property | Fluent Description | Representation |
|---|---|---|
| ignoreLiquids accepts | a Boolean | Boolean
|
| Return Value | a BlockState | BlockState
|
user:getTargetedBlock(ignoreLiquids, distance)
| Method Property | Fluent Description | Representation |
|---|---|---|
| ignoreLiquids accepts | a Boolean | Boolean
|
| distance accepts | a number | Number
|
| Return Value | a BlockState | BlockState
|
user:isOnFire()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Boolean | Boolean
|
user:isSneaking()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Boolean | Boolean
|
user:isGlowing()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Boolean | Boolean
|
user:isSilent()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Boolean | Boolean
|
user:isInvisible()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Boolean | Boolean
|
vanilla_model
| Method Property | Fluent Description | Representation |
|---|---|---|
| Field Type | a VanillaModelAPI | VanillaModelAPI
|
HEAD
| Method Property | Fluent Description | Representation |
|---|---|---|
| Field Type | a VanillaModelPart | VanillaModelPart
|
BODY
| Method Property | Fluent Description | Representation |
|---|---|---|
| Field Type | a VanillaModelPart | VanillaModelPart
|
LEFT_ARM
| Method Property | Fluent Description | Representation |
|---|---|---|
| Field Type | a VanillaModelPart | VanillaModelPart
|
RIGHT_ARM
| Method Property | Fluent Description | Representation |
|---|---|---|
| Field Type | a VanillaModelPart | VanillaModelPart
|
LEFT_LEG
| Method Property | Fluent Description | Representation |
|---|---|---|
| Field Type | a VanillaModelPart | VanillaModelPart
|
RIGHT_LEG
| Method Property | Fluent Description | Representation |
|---|---|---|
| Field Type | a VanillaModelPart | VanillaModelPart
|
HAT
| Method Property | Fluent Description | Representation |
|---|---|---|
| Field Type | a VanillaModelPart | VanillaModelPart
|
JACKET
| Method Property | Fluent Description | Representation |
|---|---|---|
| Field Type | a VanillaModelPart | VanillaModelPart
|
LEFT_SLEEVE
| Method Property | Fluent Description | Representation |
|---|---|---|
| Field Type | a VanillaModelPart | VanillaModelPart
|
RIGHT_SLEEVE
| Method Property | Fluent Description | Representation |
|---|---|---|
| Field Type | a VanillaModelPart | VanillaModelPart
|
LEFT_PANTS
| Method Property | Fluent Description | Representation |
|---|---|---|
| Field Type | a VanillaModelPart | VanillaModelPart
|
RIGHT_PANTS
| Method Property | Fluent Description | Representation |
|---|---|---|
| Field Type | a VanillaModelPart | VanillaModelPart
|
CAPE_MODEL
| Method Property | Fluent Description | Representation |
|---|---|---|
| Field Type | a VanillaModelPart | VanillaModelPart
|
FAKE_CAPE
| Method Property | Fluent Description | Representation |
|---|---|---|
| Field Type | a VanillaModelPart | VanillaModelPart
|
HELMET_ITEM
| Method Property | Fluent Description | Representation |
|---|---|---|
| Field Type | a VanillaModelPart | VanillaModelPart
|
HELMET_HEAD
| Method Property | Fluent Description | Representation |
|---|---|---|
| Field Type | a VanillaModelPart | VanillaModelPart
|
HELMET_HAT
| Method Property | Fluent Description | Representation |
|---|---|---|
| Field Type | a VanillaModelPart | VanillaModelPart
|
CHESTPLATE_BODY
| Method Property | Fluent Description | Representation |
|---|---|---|
| Field Type | a VanillaModelPart | VanillaModelPart
|
CHESTPLATE_LEFT_ARM
| Method Property | Fluent Description | Representation |
|---|---|---|
| Field Type | a VanillaModelPart | VanillaModelPart
|
CHESTPLATE_RIGHT_ARM
| Method Property | Fluent Description | Representation |
|---|---|---|
| Field Type | a VanillaModelPart | VanillaModelPart
|
LEGGINGS_BODY
| Method Property | Fluent Description | Representation |
|---|---|---|
| Field Type | a VanillaModelPart | VanillaModelPart
|
LEGGINGS_LEFT_LEG
| Method Property | Fluent Description | Representation |
|---|---|---|
| Field Type | a VanillaModelPart | VanillaModelPart
|
LEGGINGS_RIGHT_LEG
| Method Property | Fluent Description | Representation |
|---|---|---|
| Field Type | a VanillaModelPart | VanillaModelPart
|
BOOTS_LEFT_LEG
| Method Property | Fluent Description | Representation |
|---|---|---|
| Field Type | a VanillaModelPart | VanillaModelPart
|
BOOTS_RIGHT_LEG
| Method Property | Fluent Description | Representation |
|---|---|---|
| Field Type | a VanillaModelPart | VanillaModelPart
|
LEFT_ELYTRA
| Method Property | Fluent Description | Representation |
|---|---|---|
| Field Type | a VanillaModelPart | VanillaModelPart
|
RIGHT_ELYTRA
| Method Property | Fluent Description | Representation |
|---|---|---|
| Field Type | a VanillaModelPart | VanillaModelPart
|
LEFT_ITEM
| Method Property | Fluent Description | Representation |
|---|---|---|
| Field Type | a VanillaModelPart | VanillaModelPart
|
RIGHT_ITEM
| Method Property | Fluent Description | Representation |
|---|---|---|
| Field Type | a VanillaModelPart | VanillaModelPart
|
LEFT_PARROT
| Method Property | Fluent Description | Representation |
|---|---|---|
| Field Type | a VanillaModelPart | VanillaModelPart
|
RIGHT_PARROT
| Method Property | Fluent Description | Representation |
|---|---|---|
| Field Type | a VanillaModelPart | VanillaModelPart
|
ALL
| Method Property | Fluent Description | Representation |
|---|---|---|
| Field Type | a VanillaModelGroup | VanillaModelGroup
|
PLAYER
| Method Property | Fluent Description | Representation |
|---|---|---|
| Field Type | a VanillaModelGroup | VanillaModelGroup
|
OUTER_LAYER
| Method Property | Fluent Description | Representation |
|---|---|---|
| Field Type | a VanillaModelGroup | VanillaModelGroup
|
INNER_LAYER
| Method Property | Fluent Description | Representation |
|---|---|---|
| Field Type | a VanillaModelGroup | VanillaModelGroup
|
CAPE
| Method Property | Fluent Description | Representation |
|---|---|---|
| Field Type | a VanillaModelGroup | VanillaModelGroup
|
ARMOR
| Method Property | Fluent Description | Representation |
|---|---|---|
| Field Type | a VanillaModelGroup | VanillaModelGroup
|
HELMET
| Method Property | Fluent Description | Representation |
|---|---|---|
| Field Type | a VanillaModelGroup | VanillaModelGroup
|
CHESTPLATE
| Method Property | Fluent Description | Representation |
|---|---|---|
| Field Type | a VanillaModelGroup | VanillaModelGroup
|
LEGGINGS
| Method Property | Fluent Description | Representation |
|---|---|---|
| Field Type | a VanillaModelGroup | VanillaModelGroup
|
BOOTS
| Method Property | Fluent Description | Representation |
|---|---|---|
| Field Type | a VanillaModelGroup | VanillaModelGroup
|
ELYTRA
| Method Property | Fluent Description | Representation |
|---|---|---|
| Field Type | a VanillaModelGroup | VanillaModelGroup
|
HELD_ITEMS
| Method Property | Fluent Description | Representation |
|---|---|---|
| Field Type | a VanillaModelGroup | VanillaModelGroup
|
PARROTS
| Method Property | Fluent Description | Representation |
|---|---|---|
| Field Type | a VanillaModelGroup | VanillaModelGroup
|
vectors
| Method Property | Fluent Description | Representation |
|---|---|---|
| Field Type | a VectorsAPI | VectorsAPI
|
vectors.rotateAroundAxis(angle, vec, axisX, axisY, axisZ)
vectors.rotateAroundAxis(angle, x, y, z, axisX, axisY, axisZ)
world
| Method Property | Fluent Description | Representation |
|---|---|---|
| Field Type | a WorldAPI | WorldAPI
|
world.exists()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Boolean | Boolean
|
world.getBlockState(pos)
| Method Property | Fluent Description | Representation |
|---|---|---|
| pos accepts | a Vector3 | Vector3
|
| Return Value | a BlockState | BlockState
|
world.getBlockState(x, y, z)
| Method Property | Fluent Description | Representation |
|---|---|---|
| x accepts | a number | Number
|
| y accepts | a number | Number
|
| z accepts | a number | Number
|
| Return Value | a BlockState | BlockState
|
world.isThundering()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Boolean | Boolean
|
world.playerVars()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a table | Table
|
world.newBlock(block)
| Method Property | Fluent Description | Representation |
|---|---|---|
| block accepts | a string | String
|
| Return Value | a BlockState | BlockState
|
world.newBlock(block, pos)
| Method Property | Fluent Description | Representation |
|---|---|---|
| block accepts | a string | String
|
| pos accepts | a Vector3 | Vector3
|
| Return Value | a BlockState | BlockState
|
world.newBlock(block, x, y, z)
| Method Property | Fluent Description | Representation |
|---|---|---|
| block accepts | a string | String
|
| x accepts | a number | Number
|
| y accepts | a number | Number
|
| z accepts | a number | Number
|
| Return Value | a BlockState | BlockState
|
world.getMoonPhase()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | an Integer | Integer
|
Action:getTitle()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a string | String
|
Action:getHoverColor()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Vector3 | Vector3
|
Action:getColor()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Vector3 | Vector3
|
Animation:getLength()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a number | Number
|
Animation:getPriority()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | an Integer | Integer
|
Animation:getOffset()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a number | Number
|
Animation:getTime()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a number | Number
|
Animation:getPlayState()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a string | String
|
Animation:getBlend()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a number | Number
|
Animation:getStartDelay()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a number | Number
|
Animation:getLoopDelay()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a number | Number
|
Animation:restart()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | nil | nil
|
Animation:getSpeed()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a number | Number
|
Animation:getLoop()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a string | String
|
Animation:getOverride()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Boolean | Boolean
|
Animation:pause()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | nil | nil
|
animations.bbmodelName.animationName:play()
Biome:getName()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a string | String
|
Biome:getPos()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Vector3 | Vector3
|
Biome:getPrecipitation()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a string | String
|
Biome:getGrassColor()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Vector3 | Vector3
|
Biome:getFoliageColor()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Vector3 | Vector3
|
Biome:getTemperature()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a number | Number
|
Biome:getSkyColor()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Vector3 | Vector3
|
Biome:isCold()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Boolean | Boolean
|
Biome:getDownfall()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a number | Number
|
Biome:getWaterColor()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Vector3 | Vector3
|
Biome:isHot()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Boolean | Boolean
|
Biome:getFogColor()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Vector3 | Vector3
|
Biome:getWaterFogColor()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Vector3 | Vector3
|
BlockState:isOpaque()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Boolean | Boolean
|
BlockState:hasCollision()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Boolean | Boolean
|
BlockState:getMaterial()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a string | String
|
BlockState:getHardness()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a number | Number
|
BlockState:getLuminance()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | an Integer | Integer
|
BlockState:getPos()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Vector3 | Vector3
|
BlockState:isTranslucent()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Boolean | Boolean
|
BlockState:emitsRedstonePower()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Boolean | Boolean
|
BlockState:getFriction()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a number | Number
|
BlockState:isSolidBlock()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Boolean | Boolean
|
BlockState:getMapColor()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Vector3 | Vector3
|
BlockState:hasBlockEntity()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Boolean | Boolean
|
BlockState:getOpacity()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | an Integer | Integer
|
BlockState:getBlastResistance()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a number | Number
|
BlockState:isFullCube()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Boolean | Boolean
|
BlockState:getCollisionShape()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a table | Table
|
BlockState:toStateString()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a string | String
|
BlockState:getOutlineShape()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a table | Table
|
BlockState:getEntityData()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a table | Table
|
BlockState:getFluidTags()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a table | Table
|
BlockState:getSounds()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a table | Table
|
BlockState:getTags()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a table | Table
|
BlockState:hasEmissiveLighting()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Boolean | Boolean
|
BlockState:getComparatorOutput()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | an Integer | Integer
|
BlockState:getVelocityMultiplier()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a number | Number
|
BlockState:getJumpVelocityMultiplier()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a number | Number
|
properties
| Method Property | Fluent Description | Representation |
|---|---|---|
| Field Type | a table | Table
|
BlockTask:block(block)
| Method Property | Fluent Description | Representation |
|---|---|---|
| block accepts | a string | String
|
| Return Value | a RenderTask | RenderTask
|
BlockTask:block(block)
| Method Property | Fluent Description | Representation |
|---|---|---|
| block accepts | a BlockState | BlockState
|
| Return Value | a RenderTask | RenderTask
|
Inherited from RenderTask
BlockTask:scale(scale)
| Method Property | Fluent Description | Representation |
|---|---|---|
| scale accepts | a Vector3 | Vector3
|
| Return Value | a RenderTask | RenderTask
|
BlockTask:scale(x, y, z)
| Method Property | Fluent Description | Representation |
|---|---|---|
| x accepts | a number | Number
|
| y accepts | a number | Number
|
| z accepts | a number | Number
|
| Return Value | a RenderTask | RenderTask
|
Inherited from RenderTask
BlockTask:enabled(bool)
| Method Property | Fluent Description | Representation |
|---|---|---|
| bool accepts | a Boolean | Boolean
|
| Return Value | a RenderTask | RenderTask
|
Inherited from RenderTask
BlockTask:pos(pos)
| Method Property | Fluent Description | Representation |
|---|---|---|
| pos accepts | a Vector3 | Vector3
|
| Return Value | a RenderTask | RenderTask
|
BlockTask:pos(x, y, z)
| Method Property | Fluent Description | Representation |
|---|---|---|
| x accepts | a number | Number
|
| y accepts | a number | Number
|
| z accepts | a number | Number
|
| Return Value | a RenderTask | RenderTask
|
Inherited from RenderTask
BlockTask:isEnabled()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Boolean | Boolean
|
Inherited from RenderTask
BlockTask:emissive(bool)
| Method Property | Fluent Description | Representation |
|---|---|---|
| bool accepts | a Boolean | Boolean
|
| Return Value | a RenderTask | RenderTask
|
Inherited from RenderTask
BlockTask:isEmissive()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Boolean | Boolean
|
Inherited from RenderTask
BlockTask:getScale()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Vector3 | Vector3
|
Inherited from RenderTask
BlockTask:getPos()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Vector3 | Vector3
|
Inherited from RenderTask
BlockTask:getRot()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Vector3 | Vector3
|
Inherited from RenderTask
BlockTask:rot(rot)
| Method Property | Fluent Description | Representation |
|---|---|---|
| rot accepts | a Vector3 | Vector3
|
| Return Value | a RenderTask | RenderTask
|
BlockTask:rot(x, y, z)
| Method Property | Fluent Description | Representation |
|---|---|---|
| x accepts | a number | Number
|
| y accepts | a number | Number
|
| z accepts | a number | Number
|
| Return Value | a RenderTask | RenderTask
|
local myAction = myPage:newAction()
myAction:onLeftClick(function()
log("Heheh I got Left Clicked!")
end)
local myAction = myPage:newAction()
myAction:onRightClick(function()
log("Heheh I got Right Clicked!")
end)
Inherited from Action
Inherited from Action
Inherited from Action
Inherited from Action
ClickAction:getTitle()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a string | String
|
Inherited from Action
ClickAction:getHoverColor()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Vector3 | Vector3
|
Inherited from Action
Inherited from Action
Inherited from Action
ClickAction:getColor()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Vector3 | Vector3
|
leftClick
| Method Property | Fluent Description | Representation |
|---|---|---|
| Field Type | a Function | Function
|
rightClick
| Method Property | Fluent Description | Representation |
|---|---|---|
| Field Type | a Function | Function
|
subclasses NameplateCustomization
EntityNameplateCustomization:getScale()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Vector3 | Vector3
|
EntityNameplateCustomization:getPos()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Vector3 | Vector3
|
Inherited from NameplateCustomization
EntityNameplateCustomization:getText()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a string | String
|
Inherited from NameplateCustomization
visible
| Method Property | Fluent Description | Representation |
|---|---|---|
| Field Type | a Boolean | Boolean
|
background
| Method Property | Fluent Description | Representation |
|---|---|---|
| Field Type | a Boolean | Boolean
|
shadow
| Method Property | Fluent Description | Representation |
|---|---|---|
| Field Type | a Boolean | Boolean
|
outline
| Method Property | Fluent Description | Representation |
|---|---|---|
| Field Type | a Boolean | Boolean
|
ItemStack:getName()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a string | String
|
ItemStack:getCount()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | an Integer | Integer
|
ItemStack:getDamage()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | an Integer | Integer
|
ItemStack:getCooldown()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | an Integer | Integer
|
ItemStack:getTags()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a table | Table
|
ItemStack:hasGlint()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Boolean | Boolean
|
ItemStack:getRepairCost()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | an Integer | Integer
|
ItemStack:getUseAction()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a string | String
|
ItemStack:isEnchantable()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Boolean | Boolean
|
ItemStack:getUseDuration()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | an Integer | Integer
|
ItemStack:isBlockItem()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Boolean | Boolean
|
ItemStack:isDamageable()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Boolean | Boolean
|
ItemStack:toStackString()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a string | String
|
ItemStack:isStackable()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Boolean | Boolean
|
ItemStack:isFood()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Boolean | Boolean
|
ItemStack:getMaxDamage()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | an Integer | Integer
|
ItemStack:getMaxCount()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | an Integer | Integer
|
ItemStack:getRarity()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a string | String
|
ItemTask:item(item)
| Method Property | Fluent Description | Representation |
|---|---|---|
| item accepts | a string | String
|
| Return Value | a RenderTask | RenderTask
|
ItemTask:item(item)
| Method Property | Fluent Description | Representation |
|---|---|---|
| item accepts | an ItemStack | ItemStack
|
| Return Value | a RenderTask | RenderTask
|
ItemTask:renderType(renderType)
| Method Property | Fluent Description | Representation |
|---|---|---|
| renderType accepts | a string | String
|
| Return Value | a RenderTask | RenderTask
|
ItemTask:getRenderType()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a string | String
|
Inherited from RenderTask
ItemTask:scale(scale)
| Method Property | Fluent Description | Representation |
|---|---|---|
| scale accepts | a Vector3 | Vector3
|
| Return Value | a RenderTask | RenderTask
|
ItemTask:scale(x, y, z)
| Method Property | Fluent Description | Representation |
|---|---|---|
| x accepts | a number | Number
|
| y accepts | a number | Number
|
| z accepts | a number | Number
|
| Return Value | a RenderTask | RenderTask
|
Inherited from RenderTask
ItemTask:enabled(bool)
| Method Property | Fluent Description | Representation |
|---|---|---|
| bool accepts | a Boolean | Boolean
|
| Return Value | a RenderTask | RenderTask
|
Inherited from RenderTask
ItemTask:pos(pos)
| Method Property | Fluent Description | Representation |
|---|---|---|
| pos accepts | a Vector3 | Vector3
|
| Return Value | a RenderTask | RenderTask
|
ItemTask:pos(x, y, z)
| Method Property | Fluent Description | Representation |
|---|---|---|
| x accepts | a number | Number
|
| y accepts | a number | Number
|
| z accepts | a number | Number
|
| Return Value | a RenderTask | RenderTask
|
Inherited from RenderTask
ItemTask:isEnabled()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Boolean | Boolean
|
Inherited from RenderTask
ItemTask:emissive(bool)
| Method Property | Fluent Description | Representation |
|---|---|---|
| bool accepts | a Boolean | Boolean
|
| Return Value | a RenderTask | RenderTask
|
Inherited from RenderTask
ItemTask:isEmissive()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Boolean | Boolean
|
Inherited from RenderTask
ItemTask:getScale()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Vector3 | Vector3
|
Inherited from RenderTask
ItemTask:getPos()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Vector3 | Vector3
|
Inherited from RenderTask
ItemTask:getRot()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Vector3 | Vector3
|
Inherited from RenderTask
ItemTask:rot(rot)
| Method Property | Fluent Description | Representation |
|---|---|---|
| rot accepts | a Vector3 | Vector3
|
| Return Value | a RenderTask | RenderTask
|
ItemTask:rot(x, y, z)
| Method Property | Fluent Description | Representation |
|---|---|---|
| x accepts | a number | Number
|
| y accepts | a number | Number
|
| z accepts | a number | Number
|
| Return Value | a RenderTask | RenderTask
|
Keybind:getName()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a string | String
|
Keybind:getKey()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a string | String
|
Keybind:isDefault()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Boolean | Boolean
|
Keybind:getKeyName()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a string | String
|
Keybind:isPressed()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Boolean | Boolean
|
onPress
| Method Property | Fluent Description | Representation |
|---|---|---|
| Field Type | a Function | Function
|
onRelease
| Method Property | Fluent Description | Representation |
|---|---|---|
| Field Type | a Function | Function
|
enabled
| Method Property | Fluent Description | Representation |
|---|---|---|
| Field Type | a Boolean | Boolean
|
override
| Method Property | Fluent Description | Representation |
|---|---|---|
| Field Type | a Boolean | Boolean
|
LivingEntityAPI:getActiveItem()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | an ItemStack | ItemStack
|
LivingEntityAPI:getDeathTime()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a number | Number
|
LivingEntityAPI:isClimbing()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Boolean | Boolean
|
LivingEntityAPI:isUsingItem()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Boolean | Boolean
|
LivingEntityAPI:getStingerCount()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | an Integer | Integer
|
LivingEntityAPI:isLeftHanded()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Boolean | Boolean
|
LivingEntityAPI:getArmor()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a number | Number
|
LivingEntityAPI:getHealth()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a number | Number
|
LivingEntityAPI:getStatusEffects()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a table | Table
|
LivingEntityAPI:getArrowCount()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | an Integer | Integer
|
LivingEntityAPI:getActiveHand()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a string | String
|
LivingEntityAPI:getMaxHealth()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a number | Number
|
Inherited from EntityAPI
LivingEntityAPI:getName()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a string | String
|
Inherited from EntityAPI
LivingEntityAPI:getType()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a string | String
|
Inherited from EntityAPI
LivingEntityAPI:isLoaded()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Boolean | Boolean
|
Inherited from EntityAPI
Inherited from EntityAPI
LivingEntityAPI:getNbt()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a table | Table
|
Inherited from EntityAPI
Inherited from EntityAPI
Inherited from EntityAPI
LivingEntityAPI:getLookDir()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Vector3 | Vector3
|
Inherited from EntityAPI
LivingEntityAPI:isHamburger()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Boolean | Boolean
|
Inherited from EntityAPI
LivingEntityAPI:getUUID()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a string | String
|
Inherited from EntityAPI
LivingEntityAPI:getVelocity()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Vector3 | Vector3
|
Inherited from EntityAPI
LivingEntityAPI:isUnderwater()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Boolean | Boolean
|
Inherited from EntityAPI
LivingEntityAPI:getBoundingBox()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Vector3 | Vector3
|
Inherited from EntityAPI
LivingEntityAPI:getEyeHeight()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a number | Number
|
Inherited from EntityAPI
LivingEntityAPI:hasAvatar()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Boolean | Boolean
|
Inherited from EntityAPI
LivingEntityAPI:getVehicle()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | an EntityAPI | EntityAPI
|
Inherited from EntityAPI
LivingEntityAPI:isSprinting()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Boolean | Boolean
|
Inherited from EntityAPI
LivingEntityAPI:getFireTicks()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | an Integer | Integer
|
Inherited from EntityAPI
LivingEntityAPI:getMaxAir()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | an Integer | Integer
|
Inherited from EntityAPI
LivingEntityAPI:getAir()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | an Integer | Integer
|
Inherited from EntityAPI
LivingEntityAPI:getDimensionName()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a string | String
|
Inherited from EntityAPI
LivingEntityAPI:getFrozenTicks()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | an Integer | Integer
|
Inherited from EntityAPI
LivingEntityAPI:isInLava()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Boolean | Boolean
|
Inherited from EntityAPI
LivingEntityAPI:isWet()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Boolean | Boolean
|
Inherited from EntityAPI
LivingEntityAPI:getPose()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a string | String
|
Inherited from EntityAPI
LivingEntityAPI:isInWater()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Boolean | Boolean
|
Inherited from EntityAPI
LivingEntityAPI:isOnGround()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Boolean | Boolean
|
Inherited from EntityAPI
LivingEntityAPI:isInRain()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Boolean | Boolean
|
Inherited from EntityAPI
LivingEntityAPI:getEyeY()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a number | Number
|
Inherited from EntityAPI
LivingEntityAPI:getTargetedBlock()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a BlockState | BlockState
|
LivingEntityAPI:getTargetedBlock(ignoreLiquids)
| Method Property | Fluent Description | Representation |
|---|---|---|
| ignoreLiquids accepts | a Boolean | Boolean
|
| Return Value | a BlockState | BlockState
|
LivingEntityAPI:getTargetedBlock(ignoreLiquids, distance)
| Method Property | Fluent Description | Representation |
|---|---|---|
| ignoreLiquids accepts | a Boolean | Boolean
|
| distance accepts | a number | Number
|
| Return Value | a BlockState | BlockState
|
Inherited from EntityAPI
LivingEntityAPI:isOnFire()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Boolean | Boolean
|
Inherited from EntityAPI
LivingEntityAPI:isSneaking()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Boolean | Boolean
|
Inherited from EntityAPI
LivingEntityAPI:isGlowing()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Boolean | Boolean
|
Inherited from EntityAPI
LivingEntityAPI:isSilent()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Boolean | Boolean
|
Inherited from EntityAPI
Inherited from EntityAPI
LivingEntityAPI:isInvisible()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Boolean | Boolean
|
| Meta name | Allowed other parameters | Meta execution method |
|---|---|---|
__le
|
|
x <= y
|
__eq
|
|
x == y
|
__mul
|
|
x * y
|
__add
|
|
x + y
|
__sub
|
|
x - y
|
__len
|
#x
|
Matrix2:copy()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Matrix2 | Matrix2
|
Matrix2:reset()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Matrix2 | Matrix2
|
Matrix2:det()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a number | Number
|
Matrix2:transposed()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Matrix2 | Matrix2
|
Matrix2:inverted()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Matrix2 | Matrix2
|
Matrix2:transpose()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Matrix2 | Matrix2
|
Matrix2:augmented()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Matrix3 | Matrix3
|
Matrix2:invert()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Matrix2 | Matrix2
|
| Meta name | Allowed other parameters | Meta execution method |
|---|---|---|
__le
|
|
x <= y
|
__eq
|
|
x == y
|
__mul
|
|
x * y
|
__add
|
|
x + y
|
__sub
|
|
x - y
|
__len
|
#x
|
Matrix3:copy()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Matrix3 | Matrix3
|
Matrix3:reset()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Matrix3 | Matrix3
|
Matrix3:det()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a number | Number
|
Matrix3:transposed()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Matrix3 | Matrix3
|
Matrix3:inverted()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Matrix3 | Matrix3
|
Matrix3:deaugmented()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Matrix2 | Matrix2
|
Matrix3:transpose()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Matrix3 | Matrix3
|
Matrix3:augmented()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Matrix4 | Matrix4
|
Matrix3:invert()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Matrix3 | Matrix3
|
| Meta name | Allowed other parameters | Meta execution method |
|---|---|---|
__le
|
|
x <= y
|
__eq
|
|
x == y
|
__mul
|
|
x * y
|
__add
|
|
x + y
|
__sub
|
|
x - y
|
__len
|
#x
|
Matrix4:copy()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Matrix4 | Matrix4
|
Matrix4:reset()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Matrix4 | Matrix4
|
Matrix4:det()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a number | Number
|
Matrix4:transposed()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Matrix4 | Matrix4
|
Matrix4:inverted()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Matrix4 | Matrix4
|
Matrix4:deaugmented()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Matrix3 | Matrix3
|
Matrix4:transpose()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Matrix4 | Matrix4
|
Matrix4:invert()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Matrix4 | Matrix4
|
NameplateCustomization:getText()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a string | String
|
RenderTask:scale(scale)
| Method Property | Fluent Description | Representation |
|---|---|---|
| scale accepts | a Vector3 | Vector3
|
| Return Value | a RenderTask | RenderTask
|
RenderTask:scale(x, y, z)
| Method Property | Fluent Description | Representation |
|---|---|---|
| x accepts | a number | Number
|
| y accepts | a number | Number
|
| z accepts | a number | Number
|
| Return Value | a RenderTask | RenderTask
|
RenderTask:enabled(bool)
| Method Property | Fluent Description | Representation |
|---|---|---|
| bool accepts | a Boolean | Boolean
|
| Return Value | a RenderTask | RenderTask
|
RenderTask:pos(pos)
| Method Property | Fluent Description | Representation |
|---|---|---|
| pos accepts | a Vector3 | Vector3
|
| Return Value | a RenderTask | RenderTask
|
RenderTask:pos(x, y, z)
| Method Property | Fluent Description | Representation |
|---|---|---|
| x accepts | a number | Number
|
| y accepts | a number | Number
|
| z accepts | a number | Number
|
| Return Value | a RenderTask | RenderTask
|
RenderTask:isEnabled()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Boolean | Boolean
|
RenderTask:emissive(bool)
| Method Property | Fluent Description | Representation |
|---|---|---|
| bool accepts | a Boolean | Boolean
|
| Return Value | a RenderTask | RenderTask
|
RenderTask:isEmissive()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Boolean | Boolean
|
RenderTask:getScale()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Vector3 | Vector3
|
RenderTask:getPos()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Vector3 | Vector3
|
RenderTask:getRot()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Vector3 | Vector3
|
RenderTask:rot(rot)
| Method Property | Fluent Description | Representation |
|---|---|---|
| rot accepts | a Vector3 | Vector3
|
| Return Value | a RenderTask | RenderTask
|
RenderTask:rot(x, y, z)
| Method Property | Fluent Description | Representation |
|---|---|---|
| x accepts | a number | Number
|
| y accepts | a number | Number
|
| z accepts | a number | Number
|
| Return Value | a RenderTask | RenderTask
|
Inherited from Action
Inherited from Action
Inherited from Action
Inherited from Action
ScrollAction:getTitle()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a string | String
|
Inherited from Action
ScrollAction:getHoverColor()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Vector3 | Vector3
|
Inherited from Action
Inherited from Action
Inherited from Action
ScrollAction:getColor()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Vector3 | Vector3
|
scroll
| Method Property | Fluent Description | Representation |
|---|---|---|
| Field Type | a Function | Function
|
Sound:play(posX, posY, posZ, volume, pitch, loop)
TextTask:text(text)
| Method Property | Fluent Description | Representation |
|---|---|---|
| text accepts | a string | String
|
| Return Value | a RenderTask | RenderTask
|
TextTask:shadow(shadow)
| Method Property | Fluent Description | Representation |
|---|---|---|
| shadow accepts | a Boolean | Boolean
|
| Return Value | a RenderTask | RenderTask
|
TextTask:outline(outline)
| Method Property | Fluent Description | Representation |
|---|---|---|
| outline accepts | a Boolean | Boolean
|
| Return Value | a RenderTask | RenderTask
|
TextTask:isCentred()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Boolean | Boolean
|
TextTask:centered(centered)
| Method Property | Fluent Description | Representation |
|---|---|---|
| centered accepts | a Boolean | Boolean
|
| Return Value | a RenderTask | RenderTask
|
TextTask:getOutlineColor()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Vector3 | Vector3
|
TextTask:hasShadow()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Boolean | Boolean
|
TextTask:hasOutline()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Boolean | Boolean
|
Inherited from RenderTask
TextTask:scale(scale)
| Method Property | Fluent Description | Representation |
|---|---|---|
| scale accepts | a Vector3 | Vector3
|
| Return Value | a RenderTask | RenderTask
|
TextTask:scale(x, y, z)
| Method Property | Fluent Description | Representation |
|---|---|---|
| x accepts | a number | Number
|
| y accepts | a number | Number
|
| z accepts | a number | Number
|
| Return Value | a RenderTask | RenderTask
|
Inherited from RenderTask
TextTask:enabled(bool)
| Method Property | Fluent Description | Representation |
|---|---|---|
| bool accepts | a Boolean | Boolean
|
| Return Value | a RenderTask | RenderTask
|
Inherited from RenderTask
TextTask:pos(pos)
| Method Property | Fluent Description | Representation |
|---|---|---|
| pos accepts | a Vector3 | Vector3
|
| Return Value | a RenderTask | RenderTask
|
TextTask:pos(x, y, z)
| Method Property | Fluent Description | Representation |
|---|---|---|
| x accepts | a number | Number
|
| y accepts | a number | Number
|
| z accepts | a number | Number
|
| Return Value | a RenderTask | RenderTask
|
Inherited from RenderTask
TextTask:isEnabled()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Boolean | Boolean
|
Inherited from RenderTask
TextTask:emissive(bool)
| Method Property | Fluent Description | Representation |
|---|---|---|
| bool accepts | a Boolean | Boolean
|
| Return Value | a RenderTask | RenderTask
|
Inherited from RenderTask
TextTask:isEmissive()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Boolean | Boolean
|
Inherited from RenderTask
TextTask:getScale()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Vector3 | Vector3
|
Inherited from RenderTask
TextTask:getPos()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Vector3 | Vector3
|
Inherited from RenderTask
TextTask:getRot()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Vector3 | Vector3
|
Inherited from RenderTask
TextTask:rot(rot)
| Method Property | Fluent Description | Representation |
|---|---|---|
| rot accepts | a Vector3 | Vector3
|
| Return Value | a RenderTask | RenderTask
|
TextTask:rot(x, y, z)
| Method Property | Fluent Description | Representation |
|---|---|---|
| x accepts | a number | Number
|
| y accepts | a number | Number
|
| z accepts | a number | Number
|
| Return Value | a RenderTask | RenderTask
|
ToggleAction:isToggled()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Boolean | Boolean
|
ToggleAction:getToggleColor()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Vector3 | Vector3
|
ToggleAction:getToggleTitle()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a string | String
|
Inherited from Action
Inherited from Action
Inherited from Action
Inherited from Action
ToggleAction:getHoverColor()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Vector3 | Vector3
|
Inherited from Action
Inherited from Action
Inherited from Action
ToggleAction:getColor()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Vector3 | Vector3
|
toggle
| Method Property | Fluent Description | Representation |
|---|---|---|
| Field Type | a Function | Function
|
untoggle
| Method Property | Fluent Description | Representation |
|---|---|---|
| Field Type | a Function | Function
|
VanillaModelGroup:getVisible()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Boolean | Boolean
|
VanillaModelPart:getVisible()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Boolean | Boolean
|
VanillaModelPart:getOriginRot()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Vector3 | Vector3
|
VanillaModelPart:getOriginPos()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Vector3 | Vector3
|
| Meta name | Allowed other parameters | Meta execution method |
|---|---|---|
__le
|
|
x <= y
|
__lt
|
|
x < y
|
__len
|
#x
|
|
__unm
|
-x
|
|
__eq
|
|
x == y
|
__mod
|
|
x % y
|
__div
|
|
x / y
|
__mul
|
|
x * y
|
__add
|
|
x + y
|
__sub
|
|
x - y
|
Vector2:length()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a number | Number
|
Vector2:floor()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Vector2 | Vector2
|
Vector2:ceil()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Vector2 | Vector2
|
Vector2:copy()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Vector2 | Vector2
|
Vector2:normalize()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Vector2 | Vector2
|
Vector2:reset()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Vector2 | Vector2
|
Vector2:normalized()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Vector2 | Vector2
|
Vector2:lengthSquared()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a number | Number
|
Vector2:toDeg()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Vector2 | Vector2
|
Vector2:toRad()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Vector2 | Vector2
|
| Meta name | Allowed other parameters | Meta execution method |
|---|---|---|
__le
|
|
x <= y
|
__lt
|
|
x < y
|
__len
|
#x
|
|
__unm
|
-x
|
|
__eq
|
|
x == y
|
__mod
|
|
x % y
|
__div
|
|
x / y
|
__mul
|
|
x * y
|
__add
|
|
x + y
|
__sub
|
|
x - y
|
Vector3:length()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a number | Number
|
Vector3:floor()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Vector3 | Vector3
|
Vector3:ceil()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Vector3 | Vector3
|
Vector3:copy()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Vector3 | Vector3
|
Vector3:normalize()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Vector3 | Vector3
|
Vector3:reset()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Vector3 | Vector3
|
Vector3:normalized()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Vector3 | Vector3
|
Vector3:lengthSquared()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a number | Number
|
Vector3:toDeg()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Vector3 | Vector3
|
Vector3:augmented()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Vector4 | Vector4
|
Vector3:toRad()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Vector3 | Vector3
|
| Meta name | Allowed other parameters | Meta execution method |
|---|---|---|
__le
|
|
x <= y
|
__lt
|
|
x < y
|
__len
|
#x
|
|
__unm
|
-x
|
|
__eq
|
|
x == y
|
__mod
|
|
x % y
|
__div
|
|
x / y
|
__mul
|
|
x * y
|
__add
|
|
x + y
|
__sub
|
|
x - y
|
Vector4:length()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a number | Number
|
Vector4:floor()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Vector4 | Vector4
|
Vector4:ceil()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Vector4 | Vector4
|
Vector4:copy()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Vector4 | Vector4
|
Vector4:normalize()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Vector4 | Vector4
|
Vector4:reset()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Vector4 | Vector4
|
Vector4:normalized()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Vector4 | Vector4
|
Vector4:lengthSquared()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a number | Number
|
Vector4:toDeg()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Vector4 | Vector4
|
Vector4:toRad()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Vector4 | Vector4
|
| Meta name | Allowed other parameters | Meta execution method |
|---|---|---|
__le
|
|
x <= y
|
__lt
|
|
x < y
|
__len
|
#x
|
|
__unm
|
-x
|
|
__eq
|
|
x == y
|
__mod
|
|
x % y
|
__div
|
|
x / y
|
__mul
|
|
x * y
|
__add
|
|
x + y
|
__sub
|
|
x - y
|
Vector5:length()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a number | Number
|
Vector5:floor()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Vector5 | Vector5
|
Vector5:ceil()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Vector5 | Vector5
|
Vector5:copy()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Vector5 | Vector5
|
Vector5:normalize()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Vector5 | Vector5
|
Vector5:reset()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Vector5 | Vector5
|
Vector5:normalized()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Vector5 | Vector5
|
Vector5:lengthSquared()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a number | Number
|
Vector5:toDeg()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Vector5 | Vector5
|
Vector5:toRad()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Vector5 | Vector5
|
| Meta name | Allowed other parameters | Meta execution method |
|---|---|---|
__le
|
|
x <= y
|
__lt
|
|
x < y
|
__len
|
#x
|
|
__unm
|
-x
|
|
__eq
|
|
x == y
|
__mod
|
|
x % y
|
__div
|
|
x / y
|
__mul
|
|
x * y
|
__add
|
|
x + y
|
__sub
|
|
x - y
|
Vector6:length()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a number | Number
|
Vector6:floor()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Vector6 | Vector6
|
Vector6:ceil()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Vector6 | Vector6
|
Vector6:copy()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Vector6 | Vector6
|
Vector6:normalize()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Vector6 | Vector6
|
Vector6:reset()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Vector6 | Vector6
|
Vector6:normalized()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Vector6 | Vector6
|
Vector6:lengthSquared()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a number | Number
|
Vector6:toDeg()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Vector6 | Vector6
|
Vector6:toRad()
| Method Property | Fluent Description | Representation |
|---|---|---|
| Return Value | a Vector6 | Vector6
|
FRAN_PINK
fran
francielly
bunny
CHLOE_PURPLE
chloe
space
MAYA_BLUE
maya
devnull
SKYE_BLUE
sky
skye
skylar
LILY_RED
lily
foxes
fox
CHEESE
largecheese
large cheese
LUA_LOG
LUA_ERROR
LUA_PING
luna
moff
moth
DEFAULT
DISCORD
STANDING
FALL_FLYING
SLEEPING
SWIMMING
SPIN_ATTACK
CROUCHING
LONG_JUMPING
DYING
CROAKING
USING_TONGUE
ROARING
SNIFFING
EMERGING
DIGGING
NONE
THIRD_PERSON_LEFT_HAND
THIRD_PERSON_RIGHT_HAND
FIRST_PERSON_LEFT_HAND
FIRST_PERSON_RIGHT_HAND
HEAD
GUI
GROUND
FIXED
key.playerlist
figura.config.action_wheel_button
key.sneak
key.hotbar.8
key.hotbar.7
key.sprint
key.hotbar.6
key.hotbar.5
key.hotbar.4
key.hotbar.3
key.hotbar.2
key.togglePerspective
key.hotbar.1
key.spectatorOutlines
key.left
key.chat
key.pickItem
key.socialInteractions
key.fullscreen
key.attack
key.smoothCamera
key.advancements
figura.config.popup_button
key.use
figura.config.panic_button
key.loadToolbarActivator
figura.config.reload_button
key.hotbar.9
key.forward
key.right
key.screenshot
key.back
key.swapOffhand
key.command
key.saveToolbarActivator
key.inventory
key.jump
key.drop
key.keyboard.unknown
key.mouse.left
key.mouse.right
key.mouse.middle
key.mouse.4
key.mouse.5
key.mouse.6
key.mouse.7
key.mouse.8
key.keyboard.0
key.keyboard.1
key.keyboard.2
key.keyboard.3
key.keyboard.4
key.keyboard.5
key.keyboard.6
key.keyboard.7
key.keyboard.8
key.keyboard.9
key.keyboard.a
key.keyboard.b
key.keyboard.c
key.keyboard.d
key.keyboard.e
key.keyboard.f
key.keyboard.g
key.keyboard.h
key.keyboard.i
key.keyboard.j
key.keyboard.k
key.keyboard.l
key.keyboard.m
key.keyboard.n
key.keyboard.o
key.keyboard.p
key.keyboard.q
key.keyboard.r
key.keyboard.s
key.keyboard.t
key.keyboard.u
key.keyboard.v
key.keyboard.w
key.keyboard.x
key.keyboard.y
key.keyboard.z
key.keyboard.f1
key.keyboard.f2
key.keyboard.f3
key.keyboard.f4
key.keyboard.f5
key.keyboard.f6
key.keyboard.f7
key.keyboard.f8
key.keyboard.f9
key.keyboard.f10
key.keyboard.f11
key.keyboard.f12
key.keyboard.f13
key.keyboard.f14
key.keyboard.f15
key.keyboard.f16
key.keyboard.f17
key.keyboard.f18
key.keyboard.f19
key.keyboard.f20
key.keyboard.f21
key.keyboard.f22
key.keyboard.f23
key.keyboard.f24
key.keyboard.f25
key.keyboard.num.lock
key.keyboard.keypad.0
key.keyboard.keypad.1
key.keyboard.keypad.2
key.keyboard.keypad.3
key.keyboard.keypad.4
key.keyboard.keypad.5
key.keyboard.keypad.6
key.keyboard.keypad.7
key.keyboard.keypad.8
key.keyboard.keypad.9
key.keyboard.keypad.add
key.keyboard.keypad.decimal
key.keyboard.keypad.enter
key.keyboard.keypad.equal
key.keyboard.keypad.multiply
key.keyboard.keypad.divide
key.keyboard.keypad.subtract
key.keyboard.down
key.keyboard.left
key.keyboard.right
key.keyboard.up
key.keyboard.apostrophe
key.keyboard.backslash
key.keyboard.comma
key.keyboard.equal
key.keyboard.grave.accent
key.keyboard.left.bracket
key.keyboard.minus
key.keyboard.period
key.keyboard.right.bracket
key.keyboard.semicolon
key.keyboard.slash
key.keyboard.space
key.keyboard.tab
key.keyboard.left.alt
key.keyboard.left.control
key.keyboard.left.shift
key.keyboard.left.win
key.keyboard.right.alt
key.keyboard.right.control
key.keyboard.right.shift
key.keyboard.right.win
key.keyboard.enter
key.keyboard.escape
key.keyboard.backspace
key.keyboard.delete
key.keyboard.end
key.keyboard.home
key.keyboard.insert
key.keyboard.page.down
key.keyboard.page.up
key.keyboard.caps.lock
key.keyboard.pause
key.keyboard.scroll.lock
key.keyboard.menu
key.keyboard.print.screen
key.keyboard.world.1
key.keyboard.world.2
LOOP
ONCE
HOLD
None
NONE
Head
HEAD
Body
BODY
LeftArm
LEFT_ARM
RightArm
RIGHT_ARM
LeftLeg
LEFT_LEG
RightLeg
RIGHT_LEG
LeftElytra
LEFT_ELYTRA
LeftElytron
LEFT_ELYTRON
RightElytra
RIGHT_ELYTRA
RightElytron
RIGHT_ELYTRON
Cape
CAPE
World
WORLD
Hud
HUD
Gui
GUI
Camera
CAMERA
Skull
SKULL
?
LeftItemPivot
LEFT_ITEM_PIVOT
RightItemPivot
RIGHT_ITEM_PIVOT
LeftSpyglassPivot
LEFT_SPYGLASS_PIVOT
RightSpyglassPivot
RIGHT_SPYGLASS_PIVOT
HelmetItemPivot
HELMET_ITEM_PIVOT
LeftParrotPivot
LEFT_PARROT_PIVOT
RightParrotPivot
RIGHT_PARROT_PIVOT
STOPPED
PAUSED
PLAYING
notch
fxaa
art
bumpy
blobs2
pencil
color_convolve
deconverge
flip
invert
ntsc
outline
phosphor
scan_pincushion
sobel
bits
desaturate
green
blur
wobble
blobs
antialias
creeper
spider
CUTOUT
CUTOUT_CULL
TRANSLUCENT
TRANSLUCENT_CULL
EMISSIVE
EMISSIVE_SOLID
END_PORTAL
END_GATEWAY
GLINT
GLINT2
LINES
LINES_STRIP
SKIN
CAPE
ELYTRA
RESOURCE
PRIMARY
SECONDARY